/* ==========================================================================
   CSS CUSTOM PROPERTIES (THEMING SYSTEM)
   ========================================================================== */
:root {
  /* Brand Color Palette */
  --primary-color: #0874e3;
  --secondary-color: #d64000;
  --accent-color: #e9b045;
  --accent-light: #fcf2da;
  
  /* Neutral Color Palette */
  --text-main: #212223;
  --text-muted: #545454;
  --text-light: #404040;
  --bg-main: #f0f0f0;
  --bg-card: #ffffff;
  --bg-sidebar: #e3f1fd;
  --bg-dark: #011b35;
  --border-color: #767676;
  --border-light: #e8e8e8;
  
  /* Typography */
  --font-stack: 'Inter', Arial, Helvetica, sans-serif;
  
  /* Transitions */
  --transition-fast: all 0.2s ease;
  --transition-smooth: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ==========================================================================
   RESET & BASE STYLES (WCAG-friendly relative units)
   ========================================================================== */
*, 
*::before, 
*::after { 
  box-sizing: border-box; 
}

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-stack) !important;
  font-size: 1rem; /* Assumes 16px default browser sizing */
  line-height: 1.45;
  color: var(--text-main);
  background: var(--bg-main) !important;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { 
  border: 0; 
  display: block; 
  max-width: 100%; 
  height: auto; 
}

/* Accessible Interactive Focus States */
a { 
  color: var(--primary-color); 
  text-decoration: none; 
  font-weight: 600; 
  transition: var(--transition-fast); 
}

a:hover { 
  color: var(--secondary-color); 
}

a:focus,
a:focus-visible {
  outline: 0.1875rem solid var(--primary-color);
  outline-offset: 0.125rem;
}

/* ==========================================================================
   LAYOUT SCAFFOLDING
   ========================================================================== */
.color-wrap {
  background: var(--bg-main);
  max-width: 70rem;
  margin: 0 auto;
  padding: 0.9375rem 0.625rem;
}

.container {
  background: var(--bg-card);
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.15);
  border-radius: 0.5rem;
  overflow: hidden;
  border-bottom: 0.375rem solid var(--primary-color);
}

.cu-main-layout {
  padding: 1.875rem;
}

.cu-grid-two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background-color: #f7f7f7; 
}

.cu-grid-col {
  margin: 0;
  padding: 0;
}

.cu-grid-col > span[elqtype="Section"],
.cu-grid-col .cu-contact {
  height: 100%;
  display: block;
  box-sizing: border-box;
}

/* ==========================================================================
   STICKY HEADER AND PROMO BAR (Prevents structural overlaps)
   ========================================================================== */
.sticky-header-container {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.08);
  will-change: transform;
}

.cu-promo-bar {
  background-color: var(--secondary-color);
  color: #ffffff;
  text-align: center;
  padding: 0.5rem 1.875rem;
  font-family: var(--font-stack);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.3;
}

.cu-header-light {
  background: var(--bg-card);
  padding: 1rem 1.875rem;
  border-bottom: 0.25rem solid var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.header-logo-light {
  flex: 0 1 auto;
}

.header-logo-light img {
  height: 2.25rem;
  width: auto;
}

.header-center-content {
  flex: 1 1 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.header-event-title {
  margin: 0;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
  text-transform: uppercase;
}

.event-details-light {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-light);
}

.event-date-header-light,
.event-location-light {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.event-details-light .icon {
  display: inline-block;
  flex-shrink: 0;
  height: 1em;
  width: auto;
  vertical-align: middle;
  margin-right: 0.25em;
}

.event-details-light .event-sep {
  color: var(--text-light);
  font-weight: 400;
}

.header-event-meta {
  flex: 0 1 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-light);
  white-space: nowrap;
  gap: 0.375rem;
}

.header-event-meta .event-sep {
  color: #b0b0b0;
}

/* ==========================================================================
   HERO & FLUSH SIDEBAR GRID SYSTEM
   ========================================================================== */
.cu-hero {
  padding: 0;
  overflow: hidden;
  border-radius: 0.5rem;
}

.cu-hero__grid--form {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 0;
  align-items: stretch;
}

.cu-hero__content {
  padding: 2.5rem 2rem 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1.25rem;
}

.cu-hero__content > * {
  flex-shrink: 0 !important;
}

.cu-form-sidebar {
  background: var(--bg-sidebar) !important;
  padding: 2.5rem 1.875rem;
  border-radius: 0 0.5rem 0.5rem 0;
  border-left: 0.0625rem solid var(--primary-color);
  border-top: none;
  box-shadow: none;
  box-sizing: border-box;
  font-family: var(--font-stack) !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1.5rem;
  height: 100%;
}

.cu-form-sidebar__header,
.cu-form-sidebar [elqtype="UserForm"],
.cu-form-footer {
  flex-shrink: 0;
}

.cu-full-width-block {
  width: 100%;
  margin: 0;
  padding: 0;
  clear: both;
}

.cu-full-width-block > span[elqtype="Section"] {
  display: block;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

/* ==========================================================================
   LEFT COLUMN HERO CONTENT
   ========================================================================== */
.cu-hero__title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
  margin: 0 0 1rem 0;
}

.cu-hero__title span {
  color: var(--secondary-color);
}

.cu-hero__title span,
.cu-vp__headline span {
  display: block;
}

.cu-hero__subtitle {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-main);
  margin: 0 0 0.5rem 0;
}

.cu-hero__benefits {
  list-style: none;
  margin: 0.25rem 0 0.5rem 0;
  padding: 0;
}

.cu-hero__benefits li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.625rem;
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.4;
}      

.cu-hero__benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.0625rem;
  width: 1.25rem;
  height: 1.25rem;
  background-image: url("https://img03.en25.com/EloquaImages/clients/FCBusinessIntelligenceLtd/%7Bc214b7bf-6bad-40c9-a587-459369badf18%7D_circle-check.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.cu-hero__benefits li:last-child {
  margin-bottom: 0;
}

.cu-hero__audience {
  font-size: 0.875rem;
  color: var(--text-light);
  background: var(--bg-sidebar);
  border-left: 0.1875rem solid var(--primary-color);
  padding: 0.75rem 1rem;
  margin: 0;
  border-radius: 0 0.25rem 0.25rem 0;
}

/* ==========================================================================
   FORM HEADER
   ========================================================================== */
.cu-form-sidebar__header {
  margin-bottom: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 0.0625rem solid var(--border-color);
  position: relative;
  text-align: left;
}

.cu-form-sidebar__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0 0 0.5rem 0;
  line-height: 1.25;
}

.cu-form-sidebar__subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}

.cu-urgency-badge {
  background-color: #f8eadd;
  border: 0.0625rem solid #d4792a;
  border-radius: 0.25rem;
  padding: 0.5rem 0.875rem;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 0 1rem 0;
}

.cu-urgency-badge span {
  color: var(--text-main);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.3;
}

/* ==========================================================================
   FORM STYLING (Optimized Eloqua overrides)
   ========================================================================== */
.elq-form {
  background-color: var(--bg-sidebar) !important;
} 

.elq-form .elq-field-style {
  padding-bottom: 1.25rem !important; /* Unified duplicate definitions */
}

.elq-form .form-element-layout {
  padding: 0 0 0.625rem 0;
}

.elq-form .container-fluid {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.elq-form .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
  display: block;
}

.elq-form .col-sm-12,
.elq-form .col-xs-12 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.elq-form .elq-item-input,
.elq-form .elq-item-select {
  width: 100% !important;
  display: block !important;
}

.elq-form .elq-label,
.elq-form .elq-item-label,
.elq-form .elq-instructions,
.lv-label {
  font-family: var(--font-stack);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-main);
  display: block !important;
  text-align: left !important;
  margin-bottom: 0.5rem;
}

.elq-form .elq-required {
  font-size: 0 !important;
}

.elq-form .elq-required::after {
  content: " (required)";
  font-size: 0.8125rem;
  color: var(--text-main);
  font-weight: 400;
}

.elq-form input[type="text"],
.elq-form input[type="email"],
.elq-form input[type="tel"],
.elq-form select,
.elq-form textarea {
  font-family: var(--font-stack);
  font-size: 1rem;
  color: var(--text-main);
  width: 100%;
  padding: 0.75rem 1rem;
  border: 0.0625rem solid var(--border-color);
  border-radius: 0.25rem;
  background-color: #ffffff;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.elq-form select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23545454' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  padding-right: 2.5rem !important;
}

/* Visible outline focus states for forms */
.elq-form input[type="text"]:focus,
.elq-form input[type="email"]:focus,
.elq-form input[type="tel"]:focus,
.elq-form select:focus,
.elq-form textarea:focus {
  outline: 0.1875rem solid var(--primary-color);
  outline-offset: 0.125rem;
  border-color: var(--primary-color);
}

.elq-form ::placeholder {
  font-family: var(--font-stack);
  color: #707070;
  opacity: 1;
}

.elq-form h4.form-element-form-text {
  font-family: var(--font-stack);
  font-size: 0.6875rem; /* Converted 11px to rem */
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0.25rem 0 0 0;
}

.submit-button-style, 
.cu-cta-button {
  display: block;
  width: 100%;
  background-color: var(--secondary-color);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.875rem 1.25rem;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.0625rem;
  box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.15);
  transition: var(--transition-fast);
  margin-top: 0.5rem;
  text-align: center;
}

.submit-button-style:hover, 
.submit-button-style:focus, 
.cu-cta-button:hover, 
.cu-cta-button:focus {
  filter: brightness(92%);
  box-shadow: 0 0.25rem 0.75rem rgba(214, 64, 0, 0.35);
}

.submit-button-style:focus-visible, 
.cu-cta-button:focus-visible {
  outline: 0.1875rem solid var(--primary-color) !important;
  outline-offset: 0.1875rem !important;
}

/* Error validation styling */
.LV_invalid {
  color: #d61a00 !important;
  font-size: 0.8125rem;
  font-weight: 600;
  display: block;
  margin-top: 0.375rem;
  line-height: 1.4;
}

.LV_invalid_field,
input.LV_invalid_field:hover,
input.LV_invalid_field:active {
  border-color: #d61a00 !important;
  background-color: #fff8f8;
}

.LV_invalid_field:focus {
  outline: 0.1875rem solid #d61a00 !important;
  outline-offset: 0.125rem;
  border-color: #d61a00 !important;
}

/* ==========================================================================
   FORM FOOTER
   ========================================================================== */
.cu-form-footer {
  background-color: var(--bg-sidebar) !important;
  font-family: var(--font-stack) !important;
  font-size: 0.75rem;
  color: var(--text-main);
  line-height: 1.6;
  text-align: left;
  margin: 0;
  padding: 1.5rem 0rem 0rem 0rem; 
  border-top: 0.0625rem solid var(--border-color);
  box-sizing: border-box;
  position: relative;
  width: 100%;
}

.cu-form-footer p {
  font-size: 0.8125rem;
  color: var(--text-main);
  margin: 0 0 0.75rem 0;
  line-height: 1.5;
}

.cu-form-footer p:last-child {
  margin-bottom: 0 !important;
}

.cu-form-footer a {
  color: #0564c7; 
  font-weight: 600;
  text-decoration: underline; 
  transition: var(--transition-fast);
}

.cu-form-footer a:hover,
.cu-form-footer a:focus {
  color: var(--secondary-color);
  text-decoration: none;
}

.cu-form-footer a:focus-visible {
  outline: 0.1875rem solid var(--primary-color) !important;
  outline-offset: 0.125rem;
  border-radius: 0.125rem;
}

/* ==========================================================================
   ATTENDEE / LOGO WALL BLOCK
   ========================================================================== */      
.cu-logo-wall {
  background: var(--bg-dark);
  border: 0.0625rem solid var(--border-light);
  border-left: 0.25rem solid var(--accent-color);
  padding: 2rem 1.75rem 1.75rem 1.75rem;
  height: auto;
  box-sizing: border-box;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.08);
}

.cu-logo-wall:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 0.625rem 1.5625rem rgba(0, 0, 0, 0.12);
}

.cu-logo-wall-eyebrow {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0.625rem;
  background: #ffffff;
  padding: 0.625rem 1rem;
  border: 0.0625rem solid #e3e3e3;
  border-radius: 0.25rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 0.25rem 0.375rem rgba(0, 0, 0, 0.08);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--font-stack) !important;
  font-size: 0.825rem;
  font-weight: 700;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  color: var(--text-main);
  text-align: center;
}

.cu-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem 0.75rem;
  align-items: center;
  margin: 0 0 1.5rem 0;
}

.cu-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 0.0625rem solid var(--border-light);
  border-radius: 0.25rem;
  padding: 0.5rem;
  min-height: 4.5rem;
  transition: var(--transition-fast);
}

.cu-logo-item img {
  max-height: 3.25rem;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: var(--transition-fast);
  display: block;
  margin: 0 auto;
}

.cu-logo-item:hover {
  border-color: var(--accent-color);
  box-shadow: 0 0.125rem 0.5rem rgba(214, 64, 0, 0.08);
}

.cu-logo-wall:hover .cu-logo-item img,
.cu-logo-wall:focus-within .cu-logo-item img {
  filter: grayscale(0%);
  opacity: 1;
}

.cu-logo-wall-footer {
  font-family: var(--font-stack) !important;
  font-size: 0.875rem;
  color: #ffffff;
  text-align: center;
  margin: 0;
  padding-top: 1rem;
  border-top: 0.0625rem solid var(--border-light);
}

.cu-logo-wall-footer strong {
  color: var(--accent-color);
  font-weight: 700;
}

/* ==========================================================================
   TESTIMONIAL BLOCK
   ========================================================================== */
.cu-testimonial {
  margin: 0;
  background-color: var(--bg-dark);
  border-left: 0.25rem solid var(--accent-color);
  padding: 1.75rem;
  padding-top: 1.25rem;
  height: auto;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.15);
  font-family: var(--font-stack) !important;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
}

.cu-testimonial__stars,
.cu-testimonial__quote,
.cu-testimonial__footer,
.cu-testimonial__author-wrap {
  flex-shrink: 0;
}

.cu-testimonial:hover,
.cu-testimonial:focus-within {
  transform: translateY(-0.5rem); 
  box-shadow: 0 0.75rem 1.875rem rgba(0, 0, 0, 0.2);
}

.cu-testimonial__stars {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0.625rem;
  background: #ffffff;
  padding: 0.625rem 1rem;
  border: 0.0625rem solid #e3e3e3;
  border-radius: 0.25rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 0.25rem 0.375rem rgba(0, 0, 0, 0.08);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.cu-testimonial__stars span:first-child {
  color: var(--secondary-color);
  font-size: 1.5rem;
  letter-spacing: 0.125rem;
  line-height: 1;
}

.cu-testimonial__descriptor-text {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #bf3a00;
  border-left: 0.0625rem solid #e3e3e3;
  padding-left: 0.625rem;
}

.cu-testimonial__quote {
  font-size: 0.9375rem;
  line-height: 1.6;
  font-style: italic;
  color: #ffffff;
  margin: 0 0 1rem 0;
  font-family: var(--font-stack) !important;
  word-break: break-word;
}

.cu-testimonial__quote strong {
  font-weight: 700;
  color: var(--accent-color);
}

.cu-testimonial__author {
  font-size: 0.875rem;
  line-height: 1.4;
  color: #ffffff;
  text-align: left;
  margin-top: 0.75rem;
}

.cu-testimonial__author-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-name {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  display: block;
  margin-bottom: 0.25rem;
}

.author-title {
  font-size: 0.875rem;
  color: #ffffff;
  display: block;
  margin-bottom: 0.125rem;
}

.author-company {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-color);
  display: block;
}

.cu-testimonial__headshot {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(70%);
  opacity: 0.65;
  transition: var(--transition-fast);
  border: 0.0625rem solid var(--border-light);
  flex-shrink: 0;
}

.cu-testimonial__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 0.0625rem solid var(--border-light);
  border-radius: 0.25rem;
  padding: 0.375rem 0.25rem;
  max-height: 4.5rem;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  transition: var(--transition-fast);
  opacity: 0.65;
  flex-shrink: 0;
}

.cu-testimonial:hover .cu-testimonial__headshot,
.cu-testimonial:focus-within .cu-testimonial__headshot,
.cu-testimonial:hover .cu-testimonial__logo,
.cu-testimonial:focus-within .cu-testimonial__logo {
  filter: grayscale(0%);
  opacity: 1;
}

.cu-testimonial__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  gap: 1rem;
}

/* ==========================================================================
   TRUST BLOCK (Converted 100% to REM for browser zoom compatibility)
   ========================================================================== */
.cu-trust {
  background: var(--bg-dark);
  border-left: 0.25rem solid var(--accent-color);
  border-radius: 0.75rem;
  padding: 2.5rem;
  margin: 1.5rem 0;
  font-family: var(--font-stack) !important;
}

.cu-trust-eyebrow {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0.625rem;
  background: #ffffff;
  padding: 0.625rem 1rem;
  border: 0.0625rem solid #e3e3e3;
  border-radius: 0.25rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 0.25rem 0.375rem rgba(0, 0, 0, 0.08);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.825rem;
  font-weight: 700;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  color: var(--text-main);
  text-align: center;
}

.cu-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.cu-trust-stat {
  text-align: center;
  padding: 0 1.5rem;
  border-right: 0.0625rem solid #e3e3e3;
}

.cu-trust-stat:last-child {
  border-right: none;
}

.cu-trust-stat__number {
  font-size: 2.5rem; /* Converted 40px */
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin: 0 0 0.75rem 0; /* Converted 12px */
  display: block;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
}

.cu-trust-stat__number em {
  color: var(--accent-light);
  font-style: normal;
  display: inline-block;
  transition: color 0.3s ease;
}

.cu-trust-stat:hover .cu-trust-stat__number {
  transform: translateY(-0.25rem) scale(1.05);
  color: #d4792a;
}

.cu-trust-stat:hover .cu-trust-stat__number em {
  color: #ffffff;
}

.cu-trust-stat__label {
  font-size: 0.875rem; /* Converted 14px */
  font-weight: 600;
  color: var(--accent-color);
  line-height: 1.4;
  margin: 0 0 0.5rem 0; /* Converted 8px */
  display: block;
}

.cu-trust-stat__qualifier {
  font-size: 0.6875rem; /* Converted 11px */
  font-weight: 400;
  color: var(--accent-light);
  margin: 0;
  display: block;
}      

/* ==========================================================================
   CONTACT BLOCK
   ========================================================================== */
.cu-contact {
  background: #f7f7f7;
  padding: 2rem 2.5rem;
  border-top: 0.1875rem solid var(--secondary-color);
  font-family: var(--font-stack);
}

.cu-contact-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 0.0625rem solid var(--border-light);
  transition: var(--transition-smooth);
  box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.08);
}

.cu-contact-card:hover,
.cu-contact-card:focus-within {
  transform: translateY(-0.25rem);
  box-shadow: 0 0.625rem 1.5625rem rgba(0, 0, 0, 0.12);
}

.cu-contact-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cu-contact-photo {
  width: 6.25rem;
  height: 6.25rem;
  border-radius: 50%;
  object-fit: cover;
  border: 0.0625rem solid #e3e3e3;
  flex-shrink: 0;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.cu-contact-card:hover .cu-contact-photo,
.cu-contact-card:focus-within .cu-contact-photo {
  filter: grayscale(0%);
}

.cu-contact-eyebrow {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.0938rem;
  text-transform: uppercase;
  color: #bf3a00;
  margin: 0 0 0.375rem 0;
  display: block;
}

.cu-contact-body {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.45;
  margin: 0 0 0.75rem 0;
  font-weight: 400;
}

.cu-contact-email {
  font-weight: 700;
  color: #0564c7;
  font-size: 0.9375rem;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition-fast);
}

.cu-contact-email:hover { 
  color: var(--secondary-color); 
  text-decoration: underline;
}

/* ==========================================================================
   FOOTER BLOCK
   ========================================================================== */
.cu-footer {
  background: #000000;
  border-top: 0.1875rem solid var(--secondary-color);
  padding: 1.875rem 2.5rem;
  text-align: center;
  font-family: var(--font-stack) !important;
  width: 100%;
  clear: both;
  box-sizing: border-box;
}

.cu-footer p {
  font-size: 0.6875rem;
  color: #afafaf;
  margin: 0 0 0.5rem 0;
  line-height: 1.5;
}

.cu-footer p:last-child { 
  margin: 0; 
}

.cu-footer a {
  color: #529bf5;
  font-weight: 500;
  margin: 0 0.5rem;
  font-size: 0.6875rem;
  text-decoration: underline;
}

.cu-footer a:hover { 
  color: var(--secondary-color); 
  text-decoration: none; 
}

.cu-footer__logo img {
  height: 2.5rem;
  width: auto;
  margin: 0 auto 1rem auto;
  display: block;
}      

/* ==========================================================================
   MEDIA QUERIES (Enhanced Responsiveness & WCAG touch target support)
   ========================================================================== */
@media (max-width: 48rem) {
  .cu-grid-two-col {
    grid-template-columns: 1fr;
  }

  .cu-grid-col {
    width: 100%;
  }

.cu-hero__grid--form {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .cu-promo-bar {
    display: none !important;
  }
  
  .cu-header-light {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    padding: 1.25rem 1rem;
  }

  .header-logo-light {
    justify-content: center;
    flex: none;
  }

  .header-center-content {
    position: static;
    transform: none;
    pointer-events: auto;
    width: 100%;
  }

  .header-event-title {
    white-space: normal;
    font-size: 1.25rem;
  }

  .event-details-light {
    flex-wrap: wrap;
    gap: 0.375rem 0.5rem;
    font-size: 0.75rem;
  }

  .header-event-meta {
    display: none !important;
  }
  
  .responsive-row {
    flex-direction: column !important;
  }
  
.responsive-row.no-gap {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr)) !important;
  gap: 0 !important;
}

.responsive-row.no-gap > div {
  flex: none !important; 
  width: 100% !important;
}
  
  .cu-two-col-layout {
    flex-direction: column;
    padding: 2.5rem 1.25rem;
    gap: 2.5rem;
  }
  
  .cu-col-left, 
  .cu-col-right {
    flex: 0 0 100%;
    width: 100%;
  }

  .cu-hero__content {
    padding: 2rem 1.25rem 1.5rem 1.25rem;
    align-items: flex-start !important;
    text-align: left !important;
  }

  .cu-hero__benefits {
    text-align: left !important;
    width: 100%;
  }

  .cu-hero__benefits li {
    text-align: left !important;
  }

  .cu-form-sidebar {
    padding: 2rem 1.25rem !important;
    border-radius: 0 0 0.5rem 0.5rem;
    border-left: none;
    border-top: 0.0625rem solid var(--border-light);
  }

  .cu-trust { 
    padding: 2rem 1.25rem;
  }
  
  .cu-trust-eyebrow {
    margin-bottom: 1.5rem;
  }
  
  .cu-trust-grid { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 2rem 0;
  }
  
  .cu-trust-stat { 
    padding: 0 0.75rem;
    border-right: none !important;
  }
  
  .cu-trust-stat:nth-child(even) { 
    border-right: 0.0625rem solid #e3e3e3; 
  }
  
  .cu-trust-stat__number {
    font-size: 1.75rem !important;
    margin-bottom: 0.5rem;
  }
  
  .cu-trust-stat__label {
    font-size: 0.8125rem !important;
  }

  .cu-vp {
    padding: 1.25rem;
  }

  .cu-vp__headline {
    font-size: 1.75rem !important;
    line-height: 1.3;
    margin-bottom: 1rem;
  }
  
  .cu-vp__body {
    font-size: 1rem !important;
    line-height: 1.5;
    margin-bottom: 1.25rem;
  }

  .cu-vp__bullets li {
    font-size: 0.9375rem !important;
    padding: 0.625rem 0 0.625rem 1.75rem;
  }

  .cu-vp__bullets li::before {
    top: 0.9375rem;
    width: 0.875rem;
    height: 0.875rem;
  }

  .cu-logo-wall { 
    height: auto; 
    padding: 1.5rem 1rem;
    margin: 1.25rem 0 !important;
    border-radius: 0.5rem;
  }
  
  .cu-logo-grid { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 0.75rem;
  }
  
  .cu-logo-item img { 
    filter: grayscale(0%); 
    opacity: 0.85; 
  }

  .cu-footer { 
    padding: 1.5rem 1.25rem; 
  }

  .cu-contact { 
    padding: 1.5rem 1rem !important;
  }
  
  .cu-contact-inner { 
    flex-direction: column; 
    text-align: center; 
    gap: 1rem !important;
  }
  
  .cu-contact-photo { 
    filter: grayscale(0%); 
  }

  .cu-testimonial {
    margin: 1.25rem 0 !important;
    padding: 1.25rem !important;
    border-radius: 0.5rem;
  }

  .cu-testimonial__footer { 
    flex-direction: column; 
    align-items: center; 
    text-align: center; 
    gap: 1rem;
  }

  .cu-testimonial__author-wrap { 
    flex-direction: column; 
    align-items: center; 
    gap: 0.75rem;
  }

  .cu-testimonial__author { 
    margin-top: 0.5rem;
    text-align: center; 
  }

  .cu-testimonial__logo { 
    margin-top: 0.5rem;
    max-width: 9.375rem;
    filter: grayscale(0%); 
    opacity: 1; 
  }

  .cu-testimonial__stars { 
    justify-content: center; 
    margin-left: auto; 
    margin-right: auto; 
  }

  .cu-testimonial__descriptor-text { 
    border-left: none; 
    padding-left: 0; 
  }

  .cu-testimonial__headshot { 
    filter: grayscale(0%); 
    opacity: 1; 
  }
}